home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / GameboyDev / GBDK / lib / labs.c < prev    next >
C/C++ Source or Header  |  1999-03-29  |  99b  |  10 lines

  1. #include <stdlib.h>
  2.  
  3. WORD labs(WORD num)
  4. {
  5.   if(num < 0)
  6.     return -num;
  7.   else
  8.     return num;
  9. }
  10.